body > .bng-modal {
    height: var(--main-height);
    width: var(--main-width);

    padding-top: 208px;
    padding-bottom: 234px;
    
    position: absolute;
    top: 0;
    left: calc(var(--main-width) * -1);
    z-index: 100;

    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-color: white;
    
    transition: transform 150ms linear;

    box-sizing: border-box;
}

body > .bng-modal > img.logo-bng {
    height: 400px;
}

body > .bng-modal > div {
    margin-top: 100px;

    box-sizing: border-box;
    padding: 50px;
    border: 1px solid #4e4e4e;
    border-radius: 4px;
}

body > .bng-modal p {
    font-size: 30px;
    font-family: 'Roboto Condensed';
    font-weight: normal;
    line-height: 45px;
    color: #4e4e4e;
}

body > .bng-modal p:nth-child(4) {
    margin-top: 20px;
}

body > .bng-modal p span:first-child {
    font-family: 'Roboto';
    font-weight: 900;
    margin-right: 10px;
}

body > .bng-modal > img:last-child {
    margin-top: auto;
    cursor: pointer;
}

body > .bng-modal.show {
    transform: translateX(calc(var(--main-width) * 1));
}

body > .bng-modal > img:last-child {
    margin-top: auto;
    cursor: pointer;
}